Uploading Supporting Data

Supporting data are values that are uploaded in addition to other credential types to support fraud detection and improve identity verification. For example, uploading the end user's name, along with a phone number or email address that is typically not available in the data extracted from an ID allows lookups against lists of known fraudulent or suspected actors.

Supporting data is typically either:

  • Entered by the end user as form data prior to initiating the Jumio customer journey.

  • Retrieved from data stored previously

Workflows that use supporting data provide a PREPARED_DATA URL for uploading the data. See Uploading Prepared Data.

After the supporting data is uploaded other credentials are acquired and the workflow is executed.

Supporting Data Values

The following values can be uploaded as Prepared Data.

Key

Type

Mandatory

Description

firstName

string

yes

First name of the subject.

lastName

string

yes

Last name of the subject.
email string($email) yes Primary email address of the subject.
phoneNumber string yes Primary phone number of the subject in E.164 format.

dateOfBirth

LocalDate

yes

Date of birth in yyyy-MM-dd format only

address

Object

yes

 

address.line1

string

yes

 

address.line2

string

no

 

address.city

string

yes

City of residence as it appears on the Id.

address.postalCode

string

yes

Postal or zip code.

address.subdivision

string

no

City subdivision of residence as it appears on the Id.

address.country

string

yes

Country in ISO-3166-1 Alpha-3 Code or ISO-3166-1 Alpha-2 Code format.

Example Prepared Data Body

{
    "firstName": "John",
    "lastName": "Smith",
    "phoneNumber": "+15031234567",
    "email": "email@gmail.com",
    "dateOfBirth": "1972-11-16",
    "address": {
        "line1": "12345 SW Address Ln",
        "postalCode": "12345",
        "city": "Any Town",
        "subdivision": "OR",
        "country": "USA"
    }
}